iT邦幫忙

2022 iThome 鐵人賽

DAY 26
0
Mobile Development

IOS新手之旅系列 第 26

IOS新手之旅 Day26:天氣API(5)

  • 分享至 

  • xImage
  •  

昨天將decode的部分處理完了,今天來做選擇城市。

城市名

這裡將台灣的所有城市都測試了一次,發現金門和馬祖都回傳錯誤訊息,抓不到資料。

    let cityNameEN = ["Keelung", "Xinbei", "Taipei", "Taoyuan", "Hsinchu", "Miaoli", "Taichung", "Changhua", "Nantou", "Yunlin", "Chiayi", "Tainan", "Kaohsiung", "Pingtung", "Yilan", "Hualien", "Taitung", "Penghu"]
    let cityNameCN = ["基隆", "新北", "臺北", "桃園", "新竹", "苗栗", "臺中", "彰化", "南投", "雲林", "嘉義", "臺南", "高雄", "屏東", "宜蘭", "花蓮", "臺東", "澎湖"]
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        cityNameEN.count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = showCityTableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! SearchPageTableViewCell
        
        cell.cityName.text = cityNameCN[indexPath.row]
        
        return cell
    }

今天的進度就到這裡,明天繼續完善整個APP。


上一篇
IOS新手之旅 Day25:天氣API(4)
下一篇
IOS新手之旅 Day27:天氣API(6)
系列文
IOS新手之旅30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言